home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 015a / msi154.zip / ALTRUN.BAT next >
DOS Batch File  |  1991-08-29  |  886b  |  52 lines

  1. @echo off
  2.  
  3. :Reload
  4.  
  5. REM Replace with your mouse driver....
  6. mouse
  7.  
  8. :MenusOnly
  9.  
  10. REM Start the Menus...
  11. MSI
  12. REM Have returned with 0-9   1-8 = ALT-1 - ALT-8
  13.  
  14. if errorlevel 9 goto MSIAction
  15.  
  16. REM Substitute your lables for Exit in 8 - 2 for your commands
  17. if errorlevel 8 goto Exit
  18. if errorlevel 7 goto Exit
  19. if errorlevel 6 goto Exit
  20. if errorlevel 5 goto Exit
  21. if errorlevel 4 goto Exit
  22. if errorlevel 3 goto Exit
  23. if errorlevel 2 goto Exit
  24. if errorlevel 1 goto Window
  25.  
  26. goto Exit
  27.  
  28. REM For MSI Action Commands ONLY
  29. :MSIAction
  30. call act
  31. goto MenusOnly
  32.  
  33.  
  34. REM Change this section to unload your mouse and setup your Windows
  35. :Window
  36. mouse /u
  37. c:
  38. cd \win
  39. win
  40. cd \msi
  41. goto Reload
  42.  
  43.  
  44. REM This is the TRUE exit out of the Menus
  45. :Exit
  46.  
  47. :REM Unloading driver before quitting is a MUST...!
  48. mouse u
  49. echo ...
  50. echo Type ALTRUN to restart the MSI Menu System...
  51.  
  52.